home *** CD-ROM | disk | FTP | other *** search
- @echo off
- set wad=DTEPIS3.wad
- if not exist doom.exe goto nogame
- if not exist %wad% goto nowad
- if exist doom1.wad goto shareware
- cls
- @doom -file %wad%
- goto end
- :nogame
- cls
- echo Please run this program in your DOOM Directory
- goto end
- :nowad
- cls
- echo Couldn't find %wad%. Make sure it is in your Doom Directory.
- goto end
- :shareware
- cls
- echo This appears to be a shareware copy of DOOM. This wad file only works
- echo with the Registered Version.
- :end
- set wad=
-